home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / ddj0897.zip / DYN401.ZIP / kernel / jumpto / jumpto.nt1 < prev    next >
Text File  |  1995-08-08  |  306b  |  18 lines

  1. /*
  2.     jumpto for the following environment
  3.     
  4.     OS:  NT 3.5 SP 2
  5.     Compiler: Microsoft Visual C++ 2.1
  6.     Copmiler options:  /YX /Otgiy /Gfs
  7.                        /YX /O2
  8. */
  9.  
  10. __declspec(naked) void    _jumpToMethod(void (*function) (/* ??? */))
  11. {
  12.     __asm  {
  13.         add    esp,8
  14.         jmp    dword ptr [esp-04]
  15.     }
  16.  }
  17.  
  18.